Intersect(TSource) Method (ParallelQuery(TSource), ParallelQuery(TSource), IEqualityComparer(TSource))

Task Parallel System.Threading

Produces the set intersection of two parallel sequences by using the specified IEqualityComparer{T} to compare values.

Namespace:  System.Linq
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Intersect(Of TSource) ( _
	first As ParallelQuery(Of TSource), _
	second As ParallelQuery(Of TSource), _
	comparer As IEqualityComparer(Of TSource) _
) As ParallelQuery(Of TSource)
C#
public static ParallelQuery<TSource> Intersect<TSource>(
	ParallelQuery<TSource> first,
	ParallelQuery<TSource> second,
	IEqualityComparer<TSource> comparer
)

Parameters

first
Type: System.Linq..::.ParallelQuery<(Of <(TSource>)>)
A sequence whose distinct elements that also appear in second will be returned.
second
Type: System.Linq..::.ParallelQuery<(Of <(TSource>)>)
A sequence whose distinct elements that also appear in the first sequence will be returned.
comparer
Type: System.Collections.Generic..::.IEqualityComparer<(Of <(TSource>)>)
An IEqualityComparer<(Of <(T>)>) to compare values.

Type Parameters

TSource
The type of the elements of the input sequences.

Return Value

A sequence that contains the elements that form the set intersection of two sequences.

Exceptions

ExceptionCondition
System..::.ArgumentNullException first or second is a null reference (Nothing in Visual Basic).

See Also